home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / libmat.lha / src / mdiv.cc < prev    next >
C/C++ Source or Header  |  1980-01-01  |  136b  |  9 lines

  1. //                MATRIX LIB
  2. //            TOMMY JOHANSSON 1995
  3.  
  4. #include "matrix.h"
  5. Matrix operator /(const float x,const Matrix& A)
  6. {
  7.     return(x*inv(A));
  8. }
  9.